home *** CD-ROM | disk | FTP | other *** search
/ AppleScript - The Beta Release / AppleScript - The Beta Release.iso / Development Tools / Sample Applications / CoreSample / CoreSample Source / CoreSample.make < prev    next >
Encoding:
Text File  |  1992-11-24  |  1.3 KB  |  40 lines  |  [TEXT/MPS ]

  1. #-----------------------------------------------------------------------#
  2. #    CoreSample.make    -    Make Source                                        #
  3. #                                                                        #
  4. #    CoreSample is an application that is Apple Event-aware, Scripting    #
  5. #    Compatible, and recordable.  It provides support for the Required    #
  6. #    and Core suite of Apple Events, the Object Model, and the Open        #
  7. #    Scripting Architecture.                                                #
  8. #                                                                        #
  9. #    by:    Sue Dumont                                                        #
  10. #        Applications Scripting Group                                    #
  11. #                                                                        #
  12. #    Copyright © Apple Computer, Inc. 1991,1992                            #
  13. #    All rights reserved.                                                #
  14. #-----------------------------------------------------------------------#
  15.  
  16. #     You can define {SymOptions} as "-sym on" or "-sym off" for use with SADE
  17. #     or SourceBug.  We also recommend requiring prototypes for all functions
  18.  
  19. COptions = -r 
  20. SymOptions = -sym off
  21.  
  22. .c.o    ƒ    .c
  23.             C {SymOptions} CoreSample.c
  24.             
  25. CObjs    =    CoreSample.c.o ∂
  26.             "{Libraries}"Runtime.o ∂
  27.             "{Libraries}"Interface.o ∂
  28.             "{CLibraries}"StdClib.o ∂
  29.             "{PLibraries}"AEObjectSupportLib.o
  30.  
  31. CoreSample        ƒƒ {CObjs} CoreSample.make
  32.         Link {SymOptions} -o {Targ} {CObjs}
  33.         SetFile {Targ} -t APPL -c 'smpl' -a B
  34.  
  35. CoreSample        ƒƒ CoreSample.r CoreSample.h CoreSample.make
  36.         Rez -rd -append -o {Targ} CoreSample.r
  37.         Rez -a -ov -o CoreSample AEUserTermTypes.r CoreSampleAETE.r
  38.  
  39. CoreSample.c.o    ƒƒ CoreSample.c CoreSample.make
  40.